home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / graphics / animal10.zip / ORDER.BAT < prev    next >
DOS Batch File  |  1995-01-30  |  1KB  |  27 lines

  1. echo off
  2. cls
  3. echo ┌────────────────────────────────────────────────────────────────────────┐
  4. echo │ We are now ready to print a copy of the order form for ESF's Animal    │
  5. echo │ Clip Art Collection. When yoou pay you get the entire collection of    │
  6. echo │ 100 images, a printed catalog of those images, a copy of our font and  │
  7. echo │ clip art newsletter, and access to technical support.                  │
  8. echo │                                                                        │
  9. echo │ Make sure your printer is on and ready to run. Then press the enter    │
  10. echo │ key to print a copy of the shareware registration form.                │
  11. echo │                                                                        │
  12. echo │ If you *don't* want to print this, press the Ctrl-C key now to abort   │
  13. echo │ this batch file and return to INSTALL.                                 │
  14. echo └────────────────────────────────────────────────────────────────────────┘
  15. if "%1"=="" goto bad
  16. pause
  17. copy order.doc %1:
  18. goto good
  19. :bad
  20. echo You must include a printer port in the command for this batch file. Try:
  21. echo ORDER LPT1
  22. echo    or
  23. echo ORDER COM2
  24. :good
  25.  
  26.  
  27.